home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 6 / Amiga Format AFCD06 (Nov 1996, Issue 90).iso / screenplay / utility / swosfff / rncdepack.doc < prev    next >
Text File  |  1992-09-02  |  3KB  |  64 lines

  1. RNC Data Depacker V2.2 by The Welder/Divine
  2. -------------------------------------------
  3.  
  4. This little tool allows the user to depack all of the files that have been
  5. crunched using RNC's Propack utility.  Version one of this tool was quite
  6. useful when it was released over a year ago, but since then there have been
  7. some RNC files that have managed to evade this decruncher by being crunched
  8. using the FAST(Method 2) algorithm.
  9.  
  10. I've been busy coding games and haven't had time to do any ripping for the
  11. method 2 algorithm, but low and behold in one of the EX4 coverdisks there
  12. it was all nicely intact.  So, I updated this utility to allow method 2
  13. crunched files to be depacked.  Since the sources in EX4 also had CRC
  14. checks with them I decided to incorporate them also, as it wasn't difficult
  15. to do.
  16.  
  17. This utility should now depack correctly both method 1 and method 2 RNC
  18. packed files.  It should not care if a file is locked or not (except with a
  19.  key) and should report it's progress while decrunching.
  20.  
  21. Another feature added to this program is the ability to enter a decryption
  22. key as a third parameter.  This must be a hex longword and must start with
  23. a dollor sign like standard hex.  The command line for depack is as
  24. follows...
  25.  
  26.  
  27.    Depack [<Input file>] [Output file] [$Decryption key]
  28.  
  29.  
  30. As you can see from the above command line, the input filename is the ONLY
  31. essential piece of information depack requires.  If the output filename is
  32. omitted then the input file will be overwritten.  If the decryption key is
  33. omitted then the file is depacked with a key of 0 (normal).
  34.  
  35. Here are a few examples for the lame brains out there....
  36.  
  37. Eg.
  38.         Depack Logo.RNC Logo.iff
  39.  
  40. The above example will depack the file Logo.RNC to a file called Logo.iff
  41.  
  42. Eg.
  43.         Depack Logo.RNC $00000929
  44.  
  45. This example will depack Logo.RNC and decrypt it with the key $00000929.
  46. The input file will be overwritten.  As you can see the command line looks
  47. for a dollar sign to identify the decrpytion key.  Please don't try and
  48. fuck things up by using files starting with dollor signs etc. as I didn't
  49. do shit-loads of checks to serious arse-holes.
  50.  
  51. By the way, if any invalid character are found in the decrpytion key then a
  52. zero will be substituted for the invalid character.  The decryption key is
  53. not case sensitive.
  54.  
  55. Eg.
  56.         Depack Logo.RNC Logo.iff $bc00343y
  57.  
  58. This will depack the file Logo.RNC to a file called Logo.iff and decrypt it
  59. with the key $bc003430.  As you can see the Y in the above decryption key
  60. is invalid and is therefore substituted by a zero when used by depack.
  61.  
  62. Anyway, I think that's about it for this edition...  Hope you all enjoy it and
  63. be merry....
  64.